springboot除了能够使用系统自带的字体给图片加水印以外,还支持使用外部字体给图片加水印的,具体怎么做请看下面代码
这第一步当然是在网上下载一款字体啦,然后把下载的字体放在对应的文件位置,接下来就是代码了

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
package com.example.demo;

import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

import javax.imageio.ImageIO;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.io.*;

@RestController
public class LoadFontController {


@GetMapping("/test")
public void test() throws IOException, FontFormatException {
File file = new File("E://包图小白体.ttf");
Font dynamicFont = Font.createFont(Font.TRUETYPE_FONT, file);
// 方法2引用外部字体有可能会失败不起作用,建议使用方法3
// Font font = new Font("微软雅黑", Font.PLAIN, 35); //水印字体 方法1
// Font font = new Font(dynamicFont.getName(), Font.PLAIN, 35); //水印字体 方法2
Font font = dynamicFont.deriveFont(Font.PLAIN, 35); //水印字体 方法3
String srcImgPath = "E://15.jpg"; //源图片地址
String tarImgPath = "E://" + System.currentTimeMillis() + ".jpg"; //待存储的地址
String waterMarkContent = "时光蹉跎,看淡岁月你我"; //水印内容
Color color = new Color(225, 225, 60); //水印图片色彩以及透明度
addWaterMark(srcImgPath, tarImgPath, waterMarkContent, color, font);
}

public void addWaterMark(String srcImgPath, String tarImgPath, Color markContentColor, String content, Font font) throws IOException {

// 读取原图片信息
File srcImgFile = new File(srcImgPath);//得到文件
Image srcImg = ImageIO.read(srcImgFile);//文件转化为图片
int srcImgWidth = srcImg.getWidth(null);//获取图片的宽
int srcImgHeight = srcImg.getHeight(null);//获取图片的高
// 加水印
BufferedImage bufImg = new BufferedImage(srcImgWidth, srcImgHeight, BufferedImage.TYPE_INT_RGB);
Graphics2D g = bufImg.createGraphics();
g.drawImage(srcImg, 0, 0, srcImgWidth, srcImgHeight, null);
g.setColor(markContentColor); //根据图片的背景设置水印颜色
g.setFont(font); //设置字体
//设置水印的坐标 如果水印长度超过图片宽度则换行
int fontLen = getWatermarkLength(content, g); // 水印文字总长度
int line = fontLen / srcImgWidth;//文字长度相对于图片宽度应该有多少行
int y = (line + 1) * font.getSize();
System.out.println("水印文字总长度:" + fontLen + ",图片宽度:" + srcImgWidth + ",字符个数:" + content.length());
//文字叠加,自动换行叠加
int tempX = 50; // 文字初始x坐标位置
int tempY = y; // 文字初始y坐标位置
int tempCharLen;//单字符长度
int tempLineLen = 0;//单行字符总长度临时计算
StringBuffer sb = new StringBuffer();
for (int i = 0; i < content.length(); i++) {
char tempChar = content.charAt(i);
tempCharLen = getCharLen(tempChar, g);
tempLineLen += tempCharLen;
if (tempLineLen >= srcImgWidth - 70) {
//长度已经满一行,进行文字叠加
g.drawString(sb.toString(), tempX, tempY);
sb.delete(0, sb.length());//清空内容,重新追加
tempY += font.getSize();
tempLineLen = 0;
}
sb.append(tempChar);//追加字符
}
g.drawString(sb.toString(), tempX, tempY);//最后叠加余下的文字
g.dispose();
// 输出图片
FileOutputStream outImgStream = new FileOutputStream(tarImgPath);
ImageIO.write(bufImg, "jpg", outImgStream);
System.out.println("添加水印完成");
outImgStream.flush();
outImgStream.close();
}


/**
* 获取水印文字总长度
*
* @param waterMarkContent
* @param g
* @return
*/
public int getWatermarkLength(String waterMarkContent, Graphics2D g) {
return g.getFontMetrics(g.getFont()).charsWidth(waterMarkContent.toCharArray(), 0, waterMarkContent.length());
}


/**
* 获取水印对应文字的位置
*
* @param c
* @param g
* @return
*/
public int getCharLen(char c, Graphics2D g) {
return g.getFontMetrics(g.getFont()).charWidth(c);
}

}

经过本人亲测,妥妥的,附上一个获取计算文字占的像素长度方法

1
2
3
4
5
6
7
//计算文字占的像素长度
int sw = getSw(dynamicFont, content, fontSize);

private int getSw(Font dynamicFont, String content, int fontSize) {
FontMetrics fm = FontDesignMetrics.getMetrics(dynamicFont.deriveFont(Font.PLAIN, fontSize));
return fm.stringWidth(content);
}